gdk: Remove mentions of gdk_cairo_create()
authorEmmanuele Bassi <ebassi@gnome.org>
Mon, 17 Oct 2016 09:42:48 +0000 (10:42 +0100)
committerEmmanuele Bassi <ebassi@gnome.org>
Mon, 17 Oct 2016 09:44:27 +0000 (10:44 +0100)
This function does not exist any more.

gdk/gdkinternals.h

index 03e49b6cec0741787914552ab311232b2ea8b5b7..ad59f767778b1d1bc5a328a3a053dcb443d5ec0d 100644 (file)
@@ -183,7 +183,7 @@ struct _GdkWindow
    *     sized the same as the update region and set `surface_needs_composite`
    *     to TRUE. Otherwise, we paint directly onto the real server-side window.
    *
-   *  2) Things paint with cairo using gdk_cairo_create().
+   *  2) Things paint with cairo using GdkDrawingContext
    *
    *  3) When everything is painted, the user calls gdk_window_end_paint().
    *     If there was a temporary surface, this is composited back onto the
@@ -199,7 +199,7 @@ struct _GdkWindow
    *     before. We always redirect cairo drawing to a temporary surface when
    *     GL is enabled.
    *
-   *  2) Things paint with cairo using gdk_cairo_create(). Whenever
+   *  2) Things paint with cairo using GdkDrawingContext. Whenever
    *     something paints, it calls gdk_window_mark_paint_from_clip() to mark
    *     which regions it has painted in software. We'll learn what this does
    *     soon.